AddByReference(Keyword,Byte[]) Method
In This Topic
Add byte[] as attribute value to avoid copying large data
Syntax
'Declaration
Public Overloads Sub AddByReference( _
ByVal As Keyword, _
ByVal () As Byte _
)
'Usage
Dim instance As DicomImage
Dim keyword As Keyword
Dim Value() As Byte
instance.AddByReference(keyword, Value)
public void AddByReference(
Keyword ,
byte[]
)
public:
void AddByReference(
Keyword ,
array<byte>^
)
Parameters
- keyword
- Attribute tag to add
- Value
- Attribute value as byte array
Requirements
Target Platforms: .NET CLR 4.0 or higher
See Also